home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / programming / other / python-1.52 / source / objects / protos / methodobject.h < prev    next >
Text File  |  1999-06-14  |  353b  |  7 lines

  1. static void meth_dealloc ( PyCFunctionObject *m );
  2. static PyObject *meth_getattr ( PyCFunctionObject *m , char *name );
  3. static PyObject *meth_repr ( PyCFunctionObject *m );
  4. static int meth_compare ( PyCFunctionObject *a , PyCFunctionObject *b );
  5. static long meth_hash ( PyCFunctionObject *a );
  6. static PyObject *listmethodchain ( PyMethodChain *chain );
  7.